/* 
 * 	Core Owl Carousel CSS File
 *	v2.0.0
 */

/* clearfix */
.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel{
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index:1;
}


.owl-carousel .owl-stage{
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage-outer{
	position:relative;
	overflow: hidden;
	/* temporary fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-stage-outer.owl-height{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-video-wrapper{
	position: relative;
	height: 100%;
	background: #000;
}

.owl-controls .owl-nav div,
.owl-controls .owl-dot{
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-video-play-icon{
	position:absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url('owl-video-play.png') no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition-property: scale;
	transition-duration: 100ms;
	transition-timing-function: ease;
}

.owl-carousel .owl-video-play-icon:hover{
	-moz-transform: scale(1.3, 1.3);
	-ms-transform: scale(1.3, 1.3);
	-o-transform: scale(1.3, 1.3);
	-webkit-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon{
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;

	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;

	transition-property: opacity;
  	transition-duration: 400ms;
  	transition-timing-function: ease;
}

.owl-carousel .owl-video-frame{
	position: relative;
	z-index: 1;
}

.owl-loaded{
	display: block;
}
.owl-loading{
	opacity: 0;
	display: block;
}
.owl-hidden{
	opacity:0;
}
.owl-carousel .owl-refresh .owl-item{
	display: none;
}

.owl-carousel .owl-item{
	position:relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: rgba(0,0,0,0); 
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* If mouseDrag:false then you are able to select text */
.owl-carousel.owl-text-select-on .owl-item{
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all;
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel .owl-item img.owl-lazy{
	opacity: 0;
}

.owl-carousel .owl-item img{
	opacity: 1;
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	transition-property: opacity;
  	transition-duration: 400ms;
  	transition-timing-function: ease;
}

/* to do */
.owl-carousel .owl-stage.backfacefix .owl-item{
	-webkit-backface-visibility: hidden;
}

.owl-rtl{
	direction: rtl;
}
.owl-rtl .owl-item {
	float:right;
}

/* No Js */
.no-js .owl-carousel{
	display: block;
}

/* animate */

.animated {
  -webkit-animation-duration: 600ms;
  animation-duration: 600ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-animated-in{
	z-index: 0
}
.owl-animated-out{
	z-index: 1
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}





.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls{
	text-align: center;
	width:100%;
}

/* Styling Next and Prev buttons */


/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */


/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 16px;
	height: 16px;
	margin: 0px 4px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #8393bc;
	overflow: hidden;
	transition:all 0.5s ease;
}

.owl-theme .owl-controls .owl-page.active span{
	background:#aa2025;
	transition:all 0.5s ease;
	}
.owl-theme .owl-controls.clickable .owl-page:hover span{
	transition:all 0.5s ease;
	}
/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}





.fulode{ position:relative;}
.fulode .owl-prev,.fulode .owl-next{ transition:all 0.5s ease; position:absolute; display: block; height: 64px; width: 32px; bottom:0%; line-height: 0; font-size: 0; cursor: pointer;  padding: 0; border: none; display:block;z-index:10; top:50%; transform:translateY(-50%);}
.fulode .owl-prev {background:rgba(0,0,0,0.6) url(../images/left2.png) no-repeat center center; left:0%;  transition:all 0.3s linear; }
.fulode .owl-next{background:rgba(0,0,0,0.6) url(../images/right2.png) no-repeat center center; right:0%; transition:all 0.3s linear;}

.fulode .owl-pagination{ position:absolute; width:100%; left:0; bottom:80px;}
.fulode.owl-theme .owl-controls .owl-page span{ background:#2b4440; border: none; border-radius:0; transition:all 0.5s ease; width:45px; height:4px; opacity:1;}
.fulode.owl-theme .owl-controls .owl-page.active span{ background:#83bb3a; transition:all 0.5s ease; width:45px; opacity:1;}
.fulode .con{ position:absolute; color:#fff; left:0; top:50%; transform:translateY(-50%); width:100%;}
.fulode .con .d1{ font-size:48px;}
.fulode .con .d2{ margin:10px 0 0; letter-spacing:3px; opacity:0.6;}
.fulode .con .d3{ opacity:0.8; margin-top:20px;}
.fulode .con .d4{ margin-top:30px;}
.fulode .con .d4 a{ display:inline-block; width:120px; line-height:42px; border:1px solid #fff; color:#fff; text-align:center; padding:0 20px; text-transform:uppercase; text-align:center; transition:all 0.5s ease;}

.apcale{ margin-top:3%; padding:0 44px;}
.apcale .article{ padding:0 5px;}
.apcale .blsot{ display:table; height:140px; border:1px solid #ddd; background:#fff; width:100%;}
.apcale .blsot a{ display:table-cell; vertical-align:middle;}
.apcale .blsot a img{ display:inline-block; width:auto; max-width:90%; max-height:120px;}
.apcale .owl-pagination{ margin-top:4%;}
.apcale.owl-theme .owl-controls .owl-page span{ background:#e6e6e6; border: none; border-radius:50%; transition:all 0.5s ease; width:10px; height:10px; opacity:1;}
.apcale.owl-theme .owl-controls .owl-page.active span{ background:#103782; transition:all 0.5s ease; width:10px; opacity:1;}
.apcale .owl-prev,.apcale .owl-next{ transition:all 0.5s ease; position:absolute; display: block; height: 50px; width: 50px; top:45px;line-height: 0; font-size: 0; cursor: pointer;  padding: 0; border: none; display:block;z-index:10;}
.apcale .owl-prev {background:rgba(0,0,0,0.6) url(../images/left2.png) no-repeat center center; background-size:auto 50%; left:0%;  transition:all 0.3s linear; }
.apcale .owl-next{background:rgba(0,0,0,0.6) url(../images/right2.png) no-repeat center center; background-size:auto 50%; right:0%; transition:all 0.3s linear;}

.bcaola{ margin-top:3%;}
.bcaola .article{ padding:0 8px;}
.bcaola .pic{ overflow:hidden;}
.bcaola .pic img{ transition:all 0.5s ease;}
.bcaola .con{ padding:20px 15px; transition:all 0.5s ease; margin-top:3px;}
.bcaola .con .d1{ font-size:20px; line-height:25px; height:25px; overflow:hidden;}
.bcaola .con .d2{ line-height:20px; height:20px; overflow:hidden; margin-top:5px;}

.bcaola.owl-theme .owl-controls .owl-page span{ background:#e6e6e6; border: none; border-radius:50%; transition:all 0.5s ease; width:10px; height:10px; opacity:1;}
.bcaola.owl-theme .owl-controls .owl-page.active span{ background:#103782; transition:all 0.5s ease; width:10px; opacity:1;}


.rescac .article a{ display:block; color:#fff; text-align:center; padding:25px 0; transition:all 0.5s ease;}
.rescac .article img{ width:auto; display:inline-block;}
.rescac .article a .tit{ margin-top:20px;}
.rescac .owl-pagination{ margin-top:4%;}
.rescac.owl-theme .owl-controls .owl-page span{ background:#e6e6e6; border: none; border-radius:50%; transition:all 0.5s ease; width:10px; height:10px; opacity:1;}
.rescac.owl-theme .owl-controls .owl-page.active span{ background:#e9ba6a; transition:all 0.5s ease; width:10px; opacity:1;}



.lpaeol{ padding:0 45px;}
.lpaeol .article{ background: url(../images/d.jpg) repeat-x left center;}
.lpaeol .blsot{ height:80px; background:url(../testimg/t21.jpg) no-repeat center 19px; background-size:100% 21px; text-align:center;}
.lpaeol .blsot a{ display:block; padding-top:55px; color:#666; font-size:18px; position:relative;}
.lpaeol .blsot a:after{ content:''; width:20px; height:27px; background:url(../testimg/t22.png) no-repeat center center; position:absolute; left:50%; margin-left:-10px; top:26px;}
.lpaeol .blsot a.cur{ color:#40a0ef;}
.lpaeol .blsot a.cur:after{ background:url(../testimg/t23.png) no-repeat center center;}
.lpaeol .owl-prev,.lpaeol .owl-next{ transition:all 0.5s ease; position:absolute; display: block; height: 42px; width: 42px; top:50%; margin-top:-21px; line-height: 0; font-size: 0; cursor: pointer;  padding: 0; border: none; display:block;z-index:10;}
.lpaeol .owl-prev {background:url(../images/left4.png) no-repeat center center; left:0%;  transition:all 0.3s linear; }
.lpaeol .owl-next{background:url(../images/right4.png) no-repeat center center; right:0%; transition:all 0.3s linear;}


.colcoa{ padding:0 35px;}
.colcoa .article{ padding:0 6px;}
.colcoa .article .blsot{ width:100%; text-align:center; height:64px; text-align:center; display:table;}
.colcoa .article .blsot a{ display:table-cell; border:2px solid #fff; vertical-align:middle;}
.colcoa .article .blsot a.cur{ border-color:#40a0ef;}
.colcoa .article .blsot a img{ width:auto ; display:inline-block; max-width:90%; max-height:55px;}
.colcoa .owl-prev,.colcoa .owl-next{ transition:all 0.5s ease; position:absolute; display: block; height: 32px; width: 25px; top:50%; margin-top:-16px; line-height: 0; font-size: 0; cursor: pointer;  padding: 0; border: none; display:block;z-index:10;}
.colcoa .owl-prev {background:url(../images/v1.png) no-repeat center center; left:0%;  transition:all 0.3s linear; }
.colcoa .owl-next{background:url(../images/v2.png) no-repeat center center; right:0%; transition:all 0.3s linear;}










@media screen and (min-width: 1201px) {
.fulode .con .d3 a:hover{ background:#83bb3a; border-color:#83bb3a; transition:all 0.5s ease;}
.bcaola .blsot:hover .pic img{ transform:scale(1.05); transition:all 0.5s ease;}
.bcaola .blsot:hover .con{ color:#fff; background:#e60012; transition:all 0.5s ease;}
.rescac .article a:hover{ background:#bb8d14; transition:all 0.5s ease;}
}

@media screen and (max-width: 1200px) {

.fulode .con .d2{ font-size:24px;}
}
	
@media screen and (max-width: 768px) {
.apcale{ padding:0 2%;}	
.apcale .owl-prev, .apcale .owl-next{ display:none;}
.apcale .blsot{ height:120px;}
.apcale .blsot a img{ max-height:100px;}
}
	
@media screen and (max-width: 640px) {
.fulode .owl-prev, .fulode .owl-next{ width:30px; height:30px; background-size:auto 70%;}
.fulode .con .d1{ font-size:16px;}
.fulode .con .d2{ display:none;}
.fulode .con .d3{ margin-top:10px; display:none;}
.fulode .con .d3 a{ width:120px; line-height:35px;}

}
@media screen and (max-width: 480px) {


}








